home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000105_greg180@aol.com_Tue May 27 12:50:48 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  73 lines

  1. Article: 14330 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!news.stealth.net news.stealth.net!news.stealth.net!cyclone1.gnilink.net!ngpeer.news.aol.com!audrey-m2.news.aol.com!not-for-mail
  3. Lines: 60
  4. X-Admin: news@aol.com
  5. From: greg180@aol.com (Greg180)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Date: 27 May 2003 16:38:09 GMT
  8. Organization: AOL http://www.aol.com
  9. Subject: server mode help needed
  10. Message-ID: <20030527123809.04226.00000370@mb-m15.aol.com>
  11. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14330
  12.  
  13. Windows 98/Kermit 95 2.0.1
  14.  
  15. The script show below has worked well for some time.  For unknown reasons we
  16. have recently found our server machine in an unbroken cycle as displayed on the
  17. server display screen.
  18.  
  19. Bad Sequence Number
  20. Check Sum Error
  21.    the above appearing several time in sequence then followed by
  22. FAILURE: Too many retries
  23.  
  24. This sequence continues until we Ctrl\C out of Kermit.
  25.  
  26. I have been able to create this same scenario by starting the script and then
  27. placing a voice call to the host, and hanging up the voice call after the modem
  28. starts it handshake.
  29.  
  30. During the duration, the line to the modem remains busy.
  31.  
  32. I am reading the manual looking for a way to trap such errors, or a server
  33. setting which will force an exit from server mode.
  34.  
  35. Any suggestions as to diagnostic work or an appropiate fix via script will be
  36. very much welcomed.
  37.  
  38. Thanks,
  39.  
  40.  
  41. Current script follows:
  42.  
  43. echo ----------------------------\013
  44. echo -   elcomm.ksx started     -\013
  45. echo ----------------------------\013
  46. set speed 115200
  47.  
  48. ;---------------------------
  49. ; modem change
  50. set flow rts/cts
  51. set modem speed-matching off
  52. set speed 14
  53. ; --------------------------
  54.  
  55. ENABLE DELETE
  56. set server login CPS CPS1
  57. set server display on
  58. set file collision overwrite
  59. cd f:\wtdcom
  60. while true {
  61.   clear command-screen
  62.   echo Now listening.....(ver 2.1).\013
  63.   echo
  64.   echo Two quick Ctrl-C's to fully escape Kermit
  65.   echo
  66.   sleep 1
  67.   answer 0
  68.   if success server
  69.   }
  70. echo out of the loop.. 20 sec to end\013
  71. sleep 20
  72.  
  73.